06 / 08

What is the purpose of <article> ?

Purpose of <article> Element

The <article> element is a semantic block-level element used to represent a self-contained piece of content that can stand on its own. It is often used for blog posts, news stories, forum entries, or any content unit that could be distributed or reused independently.

Key Points
  1. 1<article> represents independent, self-contained content.
  2. 2

    Common uses: blog posts, news articles, forum posts, product cards, or documentation sections.

  3. 3

    Each <article> should make sense on its own, even if taken out of context.

  4. 4

    It can contain its own <header>, <footer>, <section>, and even nested <article> elements.

  5. 5

    Search engines and assistive technologies recognize it as a standalone unit of meaningful content.

Example Usage

In short: Use <article> when the content is self-contained and could be independently reused or syndicated outside the page.